home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / etc / RCS / isatty.c,v < prev    next >
Text File  |  1992-03-27  |  1KB  |  86 lines

  1. head     1.1;
  2. branch   ;
  3. access   ;
  4. symbols  sprited:1.1.1;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.1
  10. date     88.07.14.14.08.01;  author ouster;  state Exp;
  11. branches 1.1.1.1;
  12. next     ;
  13.  
  14. 1.1.1.1
  15. date     91.12.08.14.48.53;  author kupfer;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19.  
  20. desc
  21. @@
  22.  
  23.  
  24.  
  25. 1.1
  26. log
  27. @Initial revision
  28. @
  29. text
  30. @/* 
  31.  * isatty.c --
  32.  *
  33.  *    Procedure to map from Unix isatty system call to Sprite.
  34.  *
  35.  * Copyright 1986 Regents of the University of California
  36.  * All rights reserved.
  37.  */
  38.  
  39. #ifndef lint
  40. static char rcsid[] = "$Header: isatty.c,v 1.1 88/06/19 14:31:34 ouster Exp $ SPRITE (Berkeley)";
  41. #endif not lint
  42.  
  43. #include <sgtty.h>
  44.  
  45. /*
  46.  *----------------------------------------------------------------------
  47.  *
  48.  * isatty --
  49.  *
  50.  *    Returns non-zero if the given file descriptor refers to a device
  51.  *    with terminal-like characteristics.
  52.  *
  53.  * Results:
  54.  *    Non-zero means fd has terminal-like behavior, zero means it
  55.  *    doesn't.
  56.  *
  57.  * Side effects:
  58.  *    None.
  59.  *
  60.  *----------------------------------------------------------------------
  61.  */
  62.  
  63. int
  64. isatty(fd)
  65.     int fd;                             /* stream identifier */
  66. {
  67.     struct sgttyb sgttyb;
  68.  
  69.     if (ioctl(fd, TIOCGETP, (char *) &sgttyb) == -1) {
  70.     return 0;
  71.     }
  72.     return 1;
  73. }
  74. @
  75.  
  76.  
  77. 1.1.1.1
  78. log
  79. @Initial branch for Sprite server.
  80. @
  81. text
  82. @d11 1
  83. a11 1
  84. static char rcsid[] = "$Header: /sprite/src/lib/c/etc/RCS/isatty.c,v 1.1 88/07/14 14:08:01 ouster Exp Locker: rab $ SPRITE (Berkeley)";
  85. @
  86.